What is.... HTML?Html is the code browsers use to show you what you're looking at right now, the Internet. It defines color, size, and much more. Even a 20 minute long Youtube video can be described by a short stream of text that is read by your browser.Podcast Produced and Uploaded by Cody Chronisterme-edited.jpg







Visual Examples:
Tag
End Tag
<center>
</center>
<html>
</html>
<body>
</body>
<p> or <p style= "...">
</p>
<p style= "font-family: (copy/paste the font you want) ; color: (type in name or hexadecimal code) ; font-size: (choose a number and put 'px' at the end)">
Note that each item is separated by a semicolon.
</br>
There is no end tag for a line break.
<a href= "..."> (the dots are your link's url)
</a>
<ul> or <ol>
</ul> or </ol>
<li> (repeat for every item in the list)
</li> and </br> (always add the break tag)
Hint: If you are using capslock on a tag, be sure to use it on ALL tags.